home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Services Timeout.xpl < prev    next >
Text File  |  2001-04-13  |  1KB  |  50 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Shutdown\Windows NT/2K/XP\20) Services Shutdown"
  5. "NAME"="Service Timeout"
  6. "VERSION"="1.21"
  7. "OSVERSION"="010101"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Timeout (sec)"
  10. "DESCRIPTION 1"="If this computer is shut down, Windows allows all services a specified time to end themselves."
  11. "DESCRIPTION 2"="After this time is reached any still running services will be shut down by Windows."
  12. "DESCRIPTION 3"="The default timeout is 20 seconds."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17.  
  18.  
  19.  
  20.  
  21. sP="HKLM\System\CurrentControlSet\Control\WaitToKillServiceTimeout"
  22. Sub Plugin_Initialize 
  23.  i=RegReadValue(sp)
  24.  if IsEmpty(i)=false then
  25.     if IsNumeric(i) then
  26.        i=i/1000 
  27.        SetUIElement 1,i
  28.     end if
  29.  else
  30.     Disable
  31.  end if
  32. End Sub
  33.  
  34. Sub Plugin_CheckData(ElementIndex)
  35. End Sub
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  i=GetUIElement(1)
  39.  if len(i)>0 then 
  40.     i=i*1000
  41.     Call RegWriteValue(sp,i,1)
  42.  end if
  43. End Sub
  44.  
  45. Sub Plugin_Terminate 
  46. End Sub
  47.  
  48.  
  49.  
  50.